projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7962f5
)
a11y: atk_table_get_row_at_index is deprecated
author
Jonas Danielsson
<jonas@threetimestwo.org>
Sat, 29 Mar 2014 20:51:31 +0000
(21:51 +0100)
committer
Matthias Clasen
<mclasen@redhat.com>
Wed, 2 Apr 2014 01:40:24 +0000
(21:40 -0400)
Do not use deprecated index based AtkTable functions use static
helper instead.
https://bugzilla.gnome.org/show_bug.cgi?id=727313
gtk/a11y/gtktreeviewaccessible.c
patch
|
blob
|
history
diff --git
a/gtk/a11y/gtktreeviewaccessible.c
b/gtk/a11y/gtktreeviewaccessible.c
index 47180175e544cb25d9d5d7069321d8de5fad3d18..219caf493096427c1e97892de03e255a56a7f6a4 100644
(file)
--- a/
gtk/a11y/gtktreeviewaccessible.c
+++ b/
gtk/a11y/gtktreeviewaccessible.c
@@
-974,7
+974,7
@@
gtk_tree_view_accessible_is_child_selected (AtkSelection *selection,
if (widget == NULL)
return FALSE;
- row =
atk_ta
ble_get_row_at_index (ATK_TABLE (selection), i);
+ row =
gtk_tree_view_accessi
ble_get_row_at_index (ATK_TABLE (selection), i);
return gtk_tree_view_accessible_is_row_selected (ATK_TABLE (selection), row);
}